crypto/tls.clientHelloMsg.supportedSignatureAlgorithmsCert (field)

12 uses

	crypto/tls (current package)
		handshake_messages.go#L85: 	supportedSignatureAlgorithmsCert []SignatureScheme
		handshake_messages.go#L217: 	if len(m.supportedSignatureAlgorithmsCert) > 0 {
		handshake_messages.go#L225: 					for _, sigAlgo := range m.supportedSignatureAlgorithmsCert {
		handshake_messages.go#L557: 				m.supportedSignatureAlgorithmsCert = append(
		handshake_messages.go#L558: 					m.supportedSignatureAlgorithmsCert, SignatureScheme(sigAndAlg))
		handshake_messages.go#L694: 		supportedSignatureAlgorithmsCert: slices.Clone(m.supportedSignatureAlgorithmsCert),
		handshake_server_tls13.go#L587: 		len(ch.supportedSignatureAlgorithmsCert) != len(ch1.supportedSignatureAlgorithmsCert) ||
		handshake_server_tls13.go#L611: 	for i := range ch.supportedSignatureAlgorithmsCert {
		handshake_server_tls13.go#L612: 		if ch.supportedSignatureAlgorithmsCert[i] != ch1.supportedSignatureAlgorithmsCert[i] {